projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c740ee8
)
(another-calc): Use `mapc' rather than `mapcar'.
author
Juanma Barranquero
<lekktu@gmail.com>
Wed, 26 Sep 2007 00:06:32 +0000
(
00:06
+0000)
committer
Juanma Barranquero
<lekktu@gmail.com>
Wed, 26 Sep 2007 00:06:32 +0000
(
00:06
+0000)
lisp/calc/calc-misc.el
patch
|
blob
|
history
diff --git
a/lisp/calc/calc-misc.el
b/lisp/calc/calc-misc.el
index 10222fc1625385bbba8dffeb0978c0302dc14075..b660e046a21578c9690fa65eca588f549eae0bb8 100644
(file)
--- a/
lisp/calc/calc-misc.el
+++ b/
lisp/calc/calc-misc.el
@@
-145,9
+145,9
@@
Calc user interface as before (either C-x * C or C-x * K; initially C-x * C).
"Create another, independent Calculator buffer."
(interactive)
(if (eq major-mode 'calc-mode)
- (mapc
ar
(function
-
(lambda (v)
-
(set-default v (symbol-value v)))) calc-local-var-list))
+ (mapc (function
+ (lambda (v)
+ (set-default v (symbol-value v)))) calc-local-var-list))
(set-buffer (generate-new-buffer "*Calculator*"))
(pop-to-buffer (current-buffer))
(calc-mode))